Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SortRows Method / SortRows(Int32,Int32,SortInfo[]) Method
Index of first row in range to sort
Number of rows in range to sort
Array of SortInfo objects with the column indexes and sort order


In This Topic
    SortRows(Int32,Int32,SortInfo[]) Method
    In This Topic
    Sorts a range of rows on this sheet according to the specified sort information.
    Syntax
    'Declaration
     
    
    Public Overloads Function SortRows( _
       ByVal row As Integer, _
       ByVal rowCount As Integer, _
       ByVal sortInfo() As SortInfo _
    ) As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim rowCount As Integer
    Dim sortInfo() As SortInfo
    Dim value As Boolean
     
    value = instance.SortRows(row, rowCount, sortInfo)
    public bool SortRows( 
       int row,
       int rowCount,
       SortInfo[] sortInfo
    )

    Parameters

    row
    Index of first row in range to sort
    rowCount
    Number of rows in range to sort
    sortInfo
    Array of SortInfo objects with the column indexes and sort order
    See Also